# Hello World ## Inline Javascript 1. Below the `` tag, put a pair of matching script tags to contain your Javascript. ``` Section 2: JavaScript Language Basics

Section 2: JavaScript Language Basics

``` 2. This will print to the console in the browser ## External file Javascript 1. Same as last time, place script tags outside the `` tag but this time leave them empty. 2. Include a `src` attribute to the `` and will look like the code block below. ``` Section 2: JavaScript Language Basics

Section 2: JavaScript Language Basics

``` 4. The contents of the **script.js** file will look the same as the inline code from before. (Here it has been changed to distinguish it for the lesson's sake.) ``` console.log('Hello World!!!'); ``` 5. The console will output `Hello World!!!` 6. This course will use external files to keep separation of scripts.